home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / sockets / wc4g < prev    next >
Encoding:
Text File  |  1994-08-11  |  704 b   |  35 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4.  
  5. all : wc4g.tag udaemon.exe tdaemon.exe uclient.exe tclient.exe
  6.  
  7. CFLAGS =   -DMSDOS
  8.  
  9. .c.obj :
  10.     wcc386 $(CFLAGS) $*.c
  11.  
  12. udaemon.exe:  udaemon.obj
  13.     wlink N udaemon.exe f udaemon l sys op st=30k,caseexact
  14.     copy udptestd.dvp ~\network
  15.  
  16. tdaemon.exe:  tdaemon.obj
  17.     wlink N tdaemon.exe f tdaemon l sys op st=30k,caseexact
  18.     copy tcptestd.dvp ~\network
  19.  
  20. uclient.exe: uclient.obj
  21.     wlink N uclient.exe f uclient l sys op st=30k,caseexact
  22.  
  23. tclient.exe: tclient.obj
  24.     wlink N tclient.exe f tclient l sys op st=30k,caseexact
  25.  
  26. wc4g.tag:
  27.     del *.tag
  28.     del *.obj
  29.     del *.map
  30.     del *.rsp
  31.     del *.cfg
  32.     del *.exe
  33.     echo >wc4g.tag
  34.  
  35.